634715f5fcedf47e29e2fe1cce4571150f0dfc8b,tests/gdx-tests/src/com/badlogic/gdx/tests/net/NetAPITest.java,NetAPITest,create,#,69
Before Change
textButton = new TextButton("Download image", skin);
textButton.setPosition(Gdx.graphics.getWidth() * 0.5f - textButton.getWidth(), 60f);
textButton.addListener(clickListener);
stage.addActor(textButton);
textButtonTxt = new TextButton("Download text", skin);
textButtonTxt.setPosition(Gdx.graphics.getWidth() * 0.5f, 60f);
After Change
btnDownloadText = new TextButton("GET Text", skin);
btnDownloadText.setPosition(btnDownloadImage.getX() + btnDownloadImage.getWidth() + 10, 60f);
btnDownloadText.addListener(clickListener);
stage.addActor(btnDownloadText);
btnDownloadError = new TextButton("GET Error", skin);
btnDownloadError.setPosition(btnDownloadText.getX() + btnDownloadText.getWidth() + 10, 60f);
btnDownloadError.addListener(clickListener);
stage.addActor(btnDownloadError);
btnPost = new TextButton("POST", skin);
btnPost.setPosition(btnDownloadError.getX() + btnDownloadError.getWidth() + 10, 60f);
btnPost.addListener(clickListener);
stage.addActor(btnPost);
}